home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: ContourUserPane.h,v 1.2 1993/05/04 16:21:28 davis Exp $ */
-
- #import "Pane.h"
-
- @class DoubleValueSortedList, EditMatrix;
-
- @interface ContourUserPane:Pane
- {
- id scrollView;
- EditMatrix *levelsMatrix;
- DoubleValueSortedList *levelsList;
- id valueField;
- id valueFieldTitle;
- id addButton;
- id modifyButton;
- id deleteButton;
- }
-
- - init;
-
- - (BOOL)updateStatus:aStatus doc:aDoc;
-
- - add:sender;
- - delete:sender;
- - modify:sender;
- - selectLevel:sender;
-
- @end
-